System.Collections.Generic.IDictionary<TKey,System.Collections.Generic.ICollection<TValue>>.TryGetValue Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
private bool IDictionary<TKey, ICollection<TValue>>.TryGetValue(
	TKey key,
	out ICollection<TValue> values
)
Visual Basic (Declaration)
Private Function System.Collections.Generic.IDictionary<TKey,System.Collections.Generic.ICollection<TValue>>.TryGetValue ( _
	key As TKey, _
	<OutAttribute> ByRef values As ICollection(Of TValue) _
) As Boolean Implements IDictionary(Of TKey, ICollection(Of TValue)).TryGetValue
Visual C++
private:
virtual bool System.Collections.Generic.IDictionary<TKey,System.Collections.Generic.ICollection<TValue>>.TryGetValue (
	TKey key, 
	[OutAttribute] ICollection<TValue>^% values
) sealed = IDictionary<TKey, ICollection<TValue>^>::TryGetValue

Parameters

key
TKey
values
ICollection<(Of <TValue>)>%

See Also